home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / cstdio.arc / SRC.ARC / POKE.A < prev    next >
Text File  |  1985-01-16  |  395b  |  24 lines

  1. ;    _poke.a - write byte to memory.
  2. ;    (C) Copyright 1985 Gregory R. Mansfield - All Rights Reserved.
  3. ;    G. R. Mansfield.  85/01/16.
  4. ;    Ver 1.0-5116.
  5.  
  6.  
  7.     cseg
  8.     public    _poke_
  9.  
  10.  
  11. ;    _poke(data, offset, segment)
  12. ;    BYTE data, *offset;
  13. ;    SEGBASE segment;
  14.  
  15. _poke_:    mov    bx,sp
  16.     mov    al,[bx+2]    ; data
  17.     mov    si,[bx+4]    ; offset
  18.     mov    dx,[bx+6]    ; segment
  19.     push    ds
  20.     mov    ds,dx
  21.     stosb
  22.     pop    ds
  23.     ret
  24.